Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / C1SelectionManager.GetSelection<T> Delegate
The first item in the selection
The last item in the selection

In This Topic
    C1SelectionManager.GetSelection<T> Delegate
    In This Topic
    Retrieves all the items that are comprised between the startItem and the endItem. Used when making a consecutive selection.
    Syntax
    'Declaration
     
    
    Public Delegate Function C1SelectionManager.GetSelection(Of T)( _
       ByVal startItem As T, _
       ByVal endItem As T _
    ) As IList(Of T)
    public delegate IList<T> C1SelectionManager.GetSelection<T>( 
       T startItem,
       T endItem
    )

    Parameters

    startItem
    The first item in the selection
    endItem
    The last item in the selection

    Type Parameters

    T

    Return Value

    A list of items that are comprised between the start and end items
    See Also